home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1.5 KB | 43 lines | [TEXT/MPS ] |
- # SPMBuildResources
- # Copyright © 1995-96 by Apple Computer, Inc. All rights reserved.
- #
- # Build the Symantec Project Manager resources for the MacApp examples.
-
- set targets "Calc DemoDialogs DemoText IconEdit Nothing Skeleton"
-
- set nodebugOptions "-attachable -drag -powertalk"
- #set debugOptions "-attachable -drag -powertalk -debug -names -sym"
-
- set nodebug "`mabuild -FolderName {nodebugOptions}`"
- #set debug "`mabuild -FolderName {debugOptions}`"
-
- # Build the MacApp Library Resources.
- MABuild -RSRC {nodebugOptions} -autobuild
- #MABuild -RSRC {debugOptions} -autobuild
-
- # Build the example resources.
- for f in {targets}
- Project "SPMMacApp3.5∫Examples∫SPM {f}∫"
- Directory "{MacApp}Examples:{f}:"
-
- CheckOut -cs "Update resource files" -m -p "{f}_nd.π.rsrc"
- MABuild -rsrc {nodebugOptions} {f}
- TransferCKID ":SPM {f}:{f}_nd.π.rsrc" ":{nodebug}{f}.π.rsrc"
- Move -y ":{nodebug}{f}.π.rsrc" ":SPM {f}:{f}_nd.π.rsrc"
- #Enable the following when the bug for checkin is fixed.
- #CheckIn -cs "Updated resources from .r files." ∂
- # -t "Update resources" ∂
- # "{f}_nd.π.rsrc"
-
- # Enable the following when debug versions are available.
- #CheckOut -cs 'Update resource files' -m -p "{f}_d.π.rsrc"
- #MABuild -rsrc {debugOptions} {f}
- #TransferCKID ":SPM {f}:{f}_d.π.rsrc" ":{debug}{f}.π.rsrc"
- #Move -y ":{debug}{f}.π.rsrc" ":SPM {f}:{f}_d.π.rsrc"
- #Enable the following when the bug for checkin is fixed.
- #CheckIn -cs "Updated resources from .r files." ∂
- # -t "Update resources" ∂
- # "{f}_d.π.rsrc"
- end
-
-